home *** CD-ROM | disk | FTP | other *** search
/ Collection of Tools & Utilities / Collection of Tools and Utilities.iso / batchut / bcsrce2.zip / BOX1.BC < prev    next >
Text File  |  1990-10-17  |  467b  |  24 lines

  1. let %!a = %1
  2. if %!a0 = 0 goto ERROR
  3. let %!b = %2
  4. if %!b0 = 0 goto ERROR
  5. let %!c = %3
  6. if %!c0 = 0 goto ERROR
  7. let %!d = %4
  8. if %!d0 = 0 goto ERROR
  9. box %!a %!b %!c %!d
  10. GOTO END
  11. :ERROR
  12. echo.
  13. echo \\7 SYNTAX---:  BOX1 #r1 #c1 #r2 #c2
  14. echo     EXAMPLE--:  BOX1 1 1 23 80
  15. echo                 This draws a single line box from row 1 column 1 to row 2
  16. echo                 column 80.
  17. echo.
  18. echo     Like dBASE's  @ 0,0 to 22,79
  19. echo.
  20. echo.
  21. echo.
  22. :END
  23.  
  24.